home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000171_news@columbia.edu _Fri Oct 8 19:54:47 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA29346
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 8 Oct 1999 19:54:47 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA22006
  7.     for kermit.misc@watsun.cc.columbia.edu; Fri, 8 Oct 1999 19:40:28 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: a_ppi_s@my-deja.com
  10. Subject: login prompt problem
  11. Date: Fri, 08 Oct 1999 23:34:33 GMT
  12. Organization: Deja.com - Before you buy.
  13. Message-ID: <7tlv28$crs$1@nnrp1.deja.com>
  14. To: kermit.misc@columbia.edu
  15.  
  16. Whats the difference between the two?
  17.  
  18. I'm trying to write a simple script that will login to
  19. a unix machine by dialing in using kermit:
  20. (OS used Linux C-Kermit 7.0.195 )
  21. the login prompts are as follows:
  22.  
  23. when I dial in using this script below,
  24. I am able to login manually without a problem (after commenting out the
  25. input/ output lines)
  26.  
  27. But, when attempting to login automatically with the script below, I am
  28. not able to anticipate the correct login sequence.
  29.  
  30. OK, here is a sample of a correct login session ( done manually )
  31. ~~~~~~~~~~~~~~~~~~~~
  32.  0068HWR
  33.  
  34. Host Name:  aAnNdDyY
  35.  
  36. UIC: pPaAsSsSwWoOrRdD
  37.  
  38.  
  39. Connected to 0138 CDD-RTT1
  40. ^L
  41.  
  42. ~~~~~~~~~~~~~~~~~
  43.  
  44.  
  45. #!/home/andy/kermit/wermit +
  46. set line /dev/modem
  47. set carrier-watch off
  48. set speed 9600
  49. set flow-control rts/cts
  50. set stop-bits 1
  51. set parity even
  52. set command bytesize 7
  53. set duplex half
  54. set terminal echo local
  55. set terminal cr-display normal
  56. set session log text
  57. log session
  58. set modem type gen
  59. set input echo on
  60. set input timeout proceed
  61. dial 9,5551212
  62. output \13
  63. pau 3
  64. ;input 5 ame:
  65. ;output Andy\13
  66. ;input 5 UIC:
  67. ;output password\13
  68.  
  69. ~~~~~~~~~~~~~~~
  70.  
  71. Now, when I uncomment the lines above, It is not able to sense
  72. the correct login prompts,
  73. Obviously I'm missing something here. Any ideas?
  74.  
  75. Also,
  76. How do is send the following characters:
  77.  
  78. 1.) CNTRL + S
  79. 2.) CNTRL + J ( or line feed )
  80.  
  81. Thanks,
  82. -Andy
  83.  
  84.  
  85. Sent via Deja.com http://www.deja.com/
  86. Before you buy.